d096879a30ac4bcf08265f90298db97730159836,src/com/joelchristophel/sourceradio/Playlist.java,Playlist,main,#String[]#,54

Before Change


				|| (((argsList.contains("-l") || argsList.contains("-f")) && !argsList.contains("-g")))) {
			throw new IllegalArgumentException("You must specify which game you are playing.");
		}
		if (argsList.contains("-g")) { // Run SourceRadio
			Game game = Game.getGame(argsList.get(argsList.indexOf("-g") + 1));
			int argIndex = -1;
			if ((argIndex = argsList.indexOf("-f")) != -1) { // Set the game's directory

After Change


			properties.restoreDefaults();
		} else { // Run SourceRadio
			if (!argsList.contains("-g")) {
				argsList.add("-g");
				String defaultGame = properties.get("default game");
				if (defaultGame == null || defaultGame.isEmpty()) {
					Scanner scanner = new Scanner(System.in);